home *** CD-ROM | disk | FTP | other *** search
- ;
- ; Borland- Turbo PASCAL v.5.0 Pop-up Menu Configuration
- ; Mosue Systems PC Mouse (3-Button)
- ;
- Comment ("Configured for TurboPASCAL 5.0")
- Comment ("Courtesy of T.Russell Gilroy")
-
- ;
- ; Parameters
- ;
- Sensitivity (8, 10) ; (Xinc, Yinc)
- Hysteresis (1, 1) ; (AutoX, AutoY)
- ReverseVideo (Yes) ; Menu is displayed in reverse video
- FixedMenu (Yes) ; Menu is floating (centered on cursor)
- MenuCenter (76, 24) ; Centers the cursor lower right corner
- EnableBeep (No) ; Allows menu switching rather than beep
- ExpertMode (Yes) ;
-
- ;
- ; Cursor Definitions
- ;
- ArrowKeys: Cursor
- (
- Left ([Left])
- Right ([Right])
- Up ([Up])
- Down ([Down])
- )
-
- ;
- ; Button Definitions
- ;
- LB: Button (Menu(Main)) ; Left button, Main Menu
- MB: Button (Menu(Block)) ; Left button, Block Menu
- RB: Button (Menu(Action)) ; Right button, Action Menu
- LBM: Button (Menu(Marker)) ; Left button, Marker Menu
- MBT: Button (Menu(Text)) ; Middle button, Text Menu
- LRB: Button (Keys([Enter])) ; Left/Right Combination, ENTER
-
- ;
- ; Menu Definitions
- ;
- Main: Menu
- (
- Title ("MAIN MENU")
- Item (" LOAD FILE ", Keys([F3]))
- Item ("MAKE ", Keys([F9]))
- Item ("COMPILE ", Keys([a-F9]))
- Item ("RUN ", Keys([C-F9]))
- Item ("Break/Watch ", Keys([F10]B))
- Item ("Options Menu ", Keys([F10]O))
- Item ("(file options) ", Keys([F10]F))
- Item ("(run options) ", Keys([F10]R))
- Item ("(compile options)", Keys([F10]C))
- Item ("(debug options) ", Keys([F10]D))
- Item ("** SAVE FILE ** ", Keys([F2]))
- Item (" H E L P ", Keys([F1]))
- Item ("Review Last Help ", Keys([a-F1]))
- Item ("<<< Q U I T >>> ", Keys([a-X]))
- Item (""),
- Item (">> MARKER MENU <<", Menu(MARKER), Button(LBM))
- )
-
- Marker: Menu
- (
- Title ("MARKER MENU")
- Item ("Set Marker 0 ", Keys([c-K]0))
- Item ("Set Marker 1 ", Keys([c-K]1))
- Item ("Set Marker 2 ", Keys([c-K]2))
- Item ("Set Marker 3 ", Keys([c-K]3))
- Item ("Move to Marker 0 ", Keys([c-Q]0))
- Item ("Move to Marker 1 ", Keys([c-Q]1))
- Item ("Move to Marker 2 ", Keys([c-Q]2))
- Item ("Move to Marker 3 ", Keys([c-Q]3))
- Item (""),
- Item (">> MAIN MENU <<", Menu(Main), Button(LB))
- )
-
- Block: Menu
- (
- Title ("BLOCK MOVE MENU")
- Item ("Set Block Begin ", Keys([c-K][c-B]))
- Item ("Set Block End ", Keys([c-K][c-K]))
- Item ("Hide Block ", Keys([c-K][c-H]))
- Item ("Mark Word ", Keys([c-K][c-T]))
- Item ("Copy Block ", Keys([c-K][c-C]))
- Item ("Move Block ", Keys([c-K][c-V]))
- Item ("Delete Block ", Keys([c-K][c-Y]))
- Item ("Read Block ", Keys([c-K][c-R]))
- Item ("Write Block ", Keys([c-K][c-W]))
- Item ("Move to Block End", Keys([c-Q][c-K]))
- Item ("Move to Block Beg", Keys([c-Q][c-B]))
- Item ("Move to Prev. Pos", Keys([c-Q][c-P]))
- Item ("Block indent ", Keys([c-K][c-I]))
- Item ("Block Unindent ", Keys([c-K][c-U]))
- Item (""),
- Item (">> TEXT MENU <<", Menu(Text), Button(MBT))
- )
-
- Text: Menu
- (
- Title ("TEXT MENU")
- Item ("Tab ", Keys([c-I]))
- Item ("Toggle Tabs ", Keys([c-O][c-T]))
- Item ("Toggle Autoindent", Keys([c-O][c-I]))
- Item ("Toggle Unindent ", Keys([c-O][c-U]))
- Item ("Toggle Optimal Fill", Keys([c-O][c-F]))
- Item ("Insert Options ", Keys([c-O][c-O]))
- Item ("Match Pair ", Keys([c-Q][c-[]))
- Item ("Match Pair Backwd", Keys([c-Q][c-]]))
- Item (""),
- Item (">> BLOCK MENU <<", Menu(Block), Button(MB))
- )
-
- Action: Menu
- (
- Title ("ACTION MENU")
- Item ("Insert Line ", Keys([c-N]))
- Item ("Delete Line ", Keys([c-Y]))
- Item ("Delete EOL ", Keys([c-Q][c-Y]))
- Item ("Delete Word ", Keys([c-T]))
- Item ("Delete Char. ", Keys([c-G]))
- Item ("Restore Line ", Keys([c-Q][c-L]))
- Item ("Find String ", Keys([c-Q][c-F]))
- Item ("Find and Replace ", Keys([c-Q][c-A]))
- Item ("Search Again ", Keys([c-L]))
- Item ("Insert Ctrl Char.", Keys([c-P]))
- Item ("Left of Line ", Keys([c-Q][c-S]))
- Item ("Right of Line ", Keys([c-Q][c-D]))
- Item ("Top of Screen ", Keys([c-Q][c-E]))
- Item ("Bottom of Screen ", Keys([c-Q][c-X]))
- Item ("Top of File ", Keys([c-Q][c-R]))
- Item ("Bottom of File ", Keys([c-Q][c-C]))
- Item ("Move to Error Pos", Keys([c-Q][c-W]))
- )
-
- ;
- ; Mouse Definition
- ;
- Mouse
- (
- Left (LB) ; Left Button: Main Menu
- Middle (MB) ; Middle Button: Block Menu
- Right (RB) ; Right Button: Action Menu
- LeftRight (LRB) ; Enter
- Cursor (ArrowKeys)
- )